home *** CD-ROM | disk | FTP | other *** search
/ Workplace Effectiveness: Critical Thinking Skills / Workplace Effectiveness: Critical Thinking Skills.iso / pc / Files / Patterns.dxr / 00002_Navigation framework.ls < prev    next >
Encoding:
Text File  |  1998-09-16  |  728 b   |  47 lines

  1. global gMasterData, gSection, gExtendData, responseSp, coinSp, greyScreenSp
  2.  
  3. on GoOn
  4.   stopSound2()
  5.   case gSection of
  6.     #intro:
  7.       goExample()
  8.     #example:
  9.       exitExample()
  10.       goChooseSkill()
  11.     #chooseSkill:
  12.       exitChooseSkill()
  13.       leaveThisMovie()
  14.   end case
  15. end
  16.  
  17. on goBack
  18.   stopSound2()
  19.   case gSection of
  20.     #example:
  21.       exitExample()
  22.       goIntro()
  23.     #chooseSkill:
  24.       exitChooseSkill()
  25.       goIntro()
  26.     #challenge, #moreChallenge, #MostChallenge:
  27.       exitANYSkill()
  28.       goChooseSkill()
  29.   end case
  30. end
  31.  
  32. on leaveThisMovie
  33.   stopSounds()
  34.   set gExtendData to 0
  35.   cursor(4)
  36.   go(1, "Island1")
  37. end
  38.  
  39. on notePadButton
  40.   DoNotepad()
  41. end
  42.  
  43. on continueNext
  44.   stopSound2()
  45.   go(the frame + 1)
  46. end
  47.